Skip to content
  • 0 Votes
    2 Posts
    285 Views
    zaasmiZ
    https://youtu.be/9SH5eM0914A https://youtu.be/9SH5eM0914A https://youtu.be/P_4x86p5dVI
  • 0 Votes
    2 Posts
    285 Views
    zaasmiZ
    https://youtu.be/9SH5eM0914A https://youtu.be/9SH5eM0914A https://youtu.be/P_4x86p5dVI
  • 0 Votes
    2 Posts
    268 Views
    zaasmiZ
    https://youtu.be/9SH5eM0914A https://youtu.be/9SH5eM0914A https://youtu.be/P_4x86p5dVI
  • 0 Votes
    2 Posts
    309 Views
    zaasmiZ
    https://youtu.be/9SH5eM0914A https://youtu.be/9SH5eM0914A https://youtu.be/P_4x86p5dVI
  • 0 Votes
    3 Posts
    929 Views
    cyberianC
    https://youtu.be/Rn6BXQk25IY
  • 0 Votes
    3 Posts
    1k Views
    cyberianC
    https://youtu.be/Lycl1Vcc38I
  • 0 Votes
    2 Posts
    3k Views
    cyberianC
    https://youtu.be/Q99g1IXwRqk [image: 1qokIDt.png]
  • 0 Votes
    3 Posts
    3k Views
    cyberianC
    Q1. Show that the following pairs of regular expressions define the same language over the alphabet L = {p, q}. (i) (pq)p and p(qp) (ii) (p* + q)* and (p + q)* (iii) (p* + q*)* and (p + q)* [15 marks = 5*3] https://youtu.be/6OJ6PEp-3w8 Solution: (i) (pq)p and p(qp) represents same language. Both will never generate pp’s and both are starting and ending with p (ii) (p* +q)* (p+q)* (p*)+ q p* + q* p* + q* p* + q* Both are all strings possible in L = {p,q} (iii) (p* +q*)* (p+q)* (p*)* + (q*)* p* + q* (p + q)* Language with all strings Q2. Write a regular expression for the following language over the alphabet L = {x, y} such that it accepts all strings in which the letter y is never tripled. This means that no word contains the substring yyy. [5 marks] Solution: The required R.E will be (˄ + y + yy) (x + xy + xyy)*
  • 0 Votes
    2 Posts
    749 Views
    zaasmiZ
    <!DOCTYPE html> <html> <head> <title>cs202-assignment-1-solution</title> <style> body{ background: #40E0D0; } h1 { text-align: center; } .im1c { height: 150px; width: 350px; } .center { display: block; margin-left: auto; margin-right: auto; width: 50%; } table, th, td { border: 1px solid black; text-align: center; } </style> </head> <body> <h1>HTML (Hyper Text Markup Language)</h1> <div class="im1c center" ><img class="im1c center" src="im1.jpg"></div> <h3>Introduction</h3> <p>HTML stands for hyper text markup language.It is standerd markup language used to create the web pages along with CSS and Javascript.</p> <ol> <li>HTML Docoument</li> <li>HTML Elements</li> <li>HTML headings and paragraphs</li> <li>HTML formating Elements</li> </ol> <table style="width:70%; margin-left:15%; "> <tr> <th>TOPIC</th> <th>DISCRIPTION</th> <th>Interner links</th> </tr> <tr> <td><b>HTML DOCUMENTS</b></td> <td> <li>All html documents must started with <!DOCTYPE html></li> <li>The html being itself along with <html> and ends with </html> </li> <li>The visible pasrt html documents is <Body> tag</li></td> <td><a href="#">click here for details</a></td> </tr> <tr> <td><b>HTML ELEMENTS</b></td> <td>AN HTML element usausly with a starting tag and the ending tag</td> <td><a href="#">click here for details</a></td> </tr> <tr> <th rowspan="2">HTML Headding & paragraphs</th> <td>AN HTML element usausly with a starting tag and the ending tag</td> <td><a href="#">click here for details</a></td> </tr> <tr> <td>AN HTML element usausly with a starting tag and the ending tag</td> <td><a href="#">click here for details</a></td> </tr> <tr> <td><b>HTML Formatting Elements</b></td> <td> <li>blod text</li> <li>important text </li> <li>marked text</li> <li>small text </li> <li>deletd text</li> <li>inserted text </li> <li>subscript text </li> <td><a href="#">click here for details</a></td> </tr> </table> </body> </html> Solution 100% <!DOCTYPE html> <html> <body style="background-color:Turquoise; width:100% ; height:50%"> <h1 align="center">HTML (Hyper Text Markup Language) Basics</h1> <center> <img src="D:\CS202\HTML.jpg" alt="HTML" width="200" height="200"> </center> <p> <h2>Introduction </h2><br> HTML stands for Hyper Text Markup Language. It is the standard markup language used to create web pages. Along with CSS, and JavaScript, HTML is a cornerstone technology used to create web pages, as well as to create user interfaces for mobile and web applications. Web browsers can read HTML files and render them into visible or audible web pages. HTML basics include the following: <ol> <li>HTML Documents</li> <li>HTML Elements</li> <li>HTML Headings and Paragraphs</li> <li>HTML Formatting Elements</li> </ol> </p> <center> <table border="1"> <tr> <th>Topic </th> <th> Description </th> <th> Internet Links </th> </tr> <tr> <th> HTML Documents </th> <td> <ul> <li>All HTML documents must start with a type declaration: &lt!DOCTYPE html&gt </li> <li>The HTML document itself begins with and ends with &lthtml&gt and ends with &lt/html&gt </li> <li>The visible part of the HTML document is between &ltbody&gt and &lt/body&gt tags.</li> </ul> </td> <td> <a href="https://www.w3schools.com/html/html_basic.asp"> Click Here For Details... </a> </td> </tr> <tr> <th> HTML Elements </th> <td> An HTML element usually consists of a start tag and an end tag, with the content inserted in between them. </td> <td> <a href="https://www.w3schools.com/html/html_elements.asp"> Click Here For Details... </a> </td> </tr> <tr> <th rowspan="2">HTML Headings & Paragraphs </th> <td>HTML headings are defined with the &lt h1 &gt to &lt h6 &gt tags.</td> <td> <a href="https://www.w3schools.com/html/html_headings.asp"> Click Here For Details... </a> </td> </tr> <tr> <td>HTML paragraphs are defined with the &lt p &gt tag. </td> <td> <a href="https://www.w3schools.com/html/html_headings.asp"> Click Here For Details... </a> </td> </tr> <tr> <th> HTML Formatting element </th> <td> <ul> <li>Bold text </li> <li>Important text </li> <li>Emphasized text </li> <li>Marked text </li> <li>Small text </li> <li>Deleted text </li> <li>Inserted text </li> <li>Subscriptstext </li> </ul> </td> <td> <a href="https://www.w3schools.com/html/html_formatting.asp"> Click Here For Details... </a> </td> </table> </center> </body> </html>
  • 0 Votes
    3 Posts
    1k Views
    cyberianC
    https://youtu.be/zwRMG7L2Ua0
  • 0 Votes
    2 Posts
    515 Views
    cyberianC
    https://youtu.be/hH2v9hm-XY8
  • 0 Votes
    2 Posts
    4k Views
    cyberianC
    https://youtu.be/WwiUxT-gJhU Spring 2020_CS403_1_SOL.doc
  • 0 Votes
    2 Posts
    628 Views
    zaasmiZ
    <html> <title></title> <body> <h1><U>Student Profile Form</U></h1></div> <form action="form.php" method="POST"> <table> <tr> <td width="50%">Student ID </td> <td width="50%"><INPUT TYPE = "text" NAME="sID"></td> </tr> <tr> <td width="50%">Form No </td> <td width="50%"><INPUT TYPE = "Number" NAME="fNO"></td> </tr> <tr> <td width="50%">Name</td> <td width="50%"><INPUT TYPE = "text" NAME="sName" ></td> </tr> <tr> <td width="50%">Current Semester</td> <td width="50%"><INPUT TYPE = "text" NAME="cSem"></td> </tr> <tr> <td width="50%">CGPA</td> <td width="50%"> <INPUT TYPE = "Number" NAME="sCGPA"></td> </tr> <tr> <td width="50%">Entery Test Qualified</td> <td width="50%"><input type="radio" name="ETQ"> Yes <input type="radio" name="ETQ"> No</td> </tr> <tr> <td width="50%">Study Program</td> <td width="50%"><select name="SP" id="SP"> <option value="bs">Please Select</option> <option value="bs">BSCS</option> <option value="mc">MCS</option> <option value="ms">MSCS</option> </select> </td> </tr> <tr> <td width="50%">VU Email</td> <td width="50%"><INPUT TYPE = "Text" NAME="emAddress"></td> </tr> <tr> <td width="50%">Mobile No</td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> </tr> <tr> <td width="50%">Address</td> <td width="50%"><INPUT TYPE = "Text" NAME="sAddress"></td> </tr> <table> <thead> <tr> <th rowspan="5">Academic Qualifications</th> <th>Certificate/Degree Name</th> <th>Name of Institute</th> <th>Registration Number</th> <th>Obtained Marks/CGPA</th> <th>Total Marks/CGPA</th> </tr> <tr> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> </tr> <tr> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> </tr> <tr> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> </tr> <tr> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> <td width="50%"> <INPUT TYPE = "Number" NAME="sMob"></td> </tr> </thead> </table> <tr> <table> <tr> <td align="center"></td> <td style="text-align:center" width="50%"><INPUT TYPE = "submit" NAME="Submit"></td> <td align="center"></td> <td style="text-align:center" width="50%"><INPUT TYPE = "reset" NAME="Reset"></td> </tr> </table> </form> </body> </html> Output [image: mJ4dHjO.png]
  • 0 Votes
    2 Posts
    1k Views
    zaasmiZ
    CS614 ASSIGNEMNT NO 01 Solution [image: 1j7dUIA.png] [image: ZXcDeiM.png] [image: syb0jO9.png] [image: tMSeWA2.png] [image: UWBEhvV.png] [image: EYSG6fO.png] [image: hQj3oOC.png] [image: LpvgqH8.png] CS614 assignment Solution spring 2020.xlsx
  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    4 Posts
    2k Views
    zaasmiZ
    please post a today assignment file
How to Build a $1,000/Month PAK VS BAN Live Live Cricket Streaming
File Sharing

1

Online

3.0k

Users

2.8k

Topics

8.2k

Posts
| |